:root{    
    --primary: rgba(61, 181, 75, 1);
   --secundary: rgba(0, 165, 79, 1);
}

* {
   margin: 0;
   padding: 0;
   font-family: 'Libre Franklin', sans-serif;
}

a {
   text-decoration: none;
}

html , body {
   height: 100%;
   width: 100%;
}

.container-page {
   height: 100%;
   width: 100%;
   display: flex;
   flex-direction: column;
}

/* -------------------------- header-page (start) --------------------- */

.header-page {
    background-color:   var(--primary);
    height: 12%;
    width: 100%;
}

nav {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav .navtop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navtop .navTopLeft {
    display: flex;
    color: white;
    border-left: 1px dotted white ;
}

nav .navdotted {
    height: 100%;
    border-left: white 2px solid;
}

.navTopLeft .navtext .navtext-title {
    font-size: 3vw;
}

.navtext .navtext-money {
    font-size: 5vw;
    font-weight: 900;
}

/* -------------------------- header-page (end) ----------------------- */

/* --------------------------- main-page (start) ---------------------- */
.main-page {
    height: 78%;
}

.main-top {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    flex-direction: column;
}

.main-page .main-top .main-top-text {
    font-size: 4vw;
}

.main-top img {
    width: 90%;
}

.main-page .main-top-text {
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--primary);
}

.main-page form input {
    border: none;
    border-bottom: 2px dotted var(--primary);
    border-radius: 0;
    padding-left: 8px;
}

.main-page form label {
    color: rgba(0, 0, 0, 0.349);
    font-size: 14px;
    line-height: 1;
}

form .form-floating  {
    position: relative;
    overflow: hidden;
}



form .input-data {
    height: 40px;
    width: 100%;
    position: relative;
}

form .input-data input {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 17px;
    border-bottom:2px dotted var(--primary);
}

.input-data input:focus ~ label {
    transform: translateY(-17px);
    font-size: 12px;
    color: var(--primary);
}

form .input-data label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: gray;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-data .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;

}

form .input-data .underline:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--secundary);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-data input:focus ~ .underline:before {
    transform: scaleX(1);
}

/* -------------------- */
/* --------------------------- main-page (end) ------------------------ */

/* -------------------------- footer-page (start) --------------------- */
.footer {
    border-top: 2px dotted var(--primary) ;
    height: 12%;
    color: black;
    font-size: 10px;
}

footer a{
    text-decoration: none;
    color: black;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    display: flex;
    justify-content: center;
}

footer a img {
    width: 25px;
    height: 25px;
}

footer a p {
    color: var(--primary);
}

.footer footer a{
    transition: all 0.2s ease-in-out;
}

.footer footer a:focus {
    transform: translateX(-15px);
}

/* -------------------------- footer-page (end) ----------------------- */